projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c3a3229
)
Comment change.
author
Richard M. Stallman
<rms@gnu.org>
Sat, 21 Dec 2002 17:59:27 +0000
(17:59 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sat, 21 Dec 2002 17:59:27 +0000
(17:59 +0000)
src/alloc.c
patch
|
blob
|
history
diff --git
a/src/alloc.c
b/src/alloc.c
index 29cb1de5826958b8ecda7b7445a4ed2711a85603..5cb34b9ed45f60eb1ae17ac998a02ca2712d0398 100644
(file)
--- a/
src/alloc.c
+++ b/
src/alloc.c
@@
-341,7
+341,12
@@
int dont_register_blocks;
struct mem_node
{
- struct mem_node *left, *right, *parent;
+ /* Children of this node. These pointers are never NULL. When there
+ is no child, the value is MEM_NIL, which points to a dummy node. */
+ struct mem_node *left, *right;
+
+ /* The parent of this node. In the root node, this is NULL. */
+ struct mem_node *parent;
/* Start and end of allocated region. */
void *start, *end;